home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / msdos / convrtrs / hgrpic / raw2pic.bat < prev    next >
DOS Batch File  |  1991-05-02  |  119b  |  9 lines

  1.  echo off
  2.  if %1: == : goto DO_ALL
  3. :DO_SINGLE
  4.  a2b %1
  5.  goto DONE
  6. :DO_ALL
  7.  for %%f in (*.RAW) do a2b %%f
  8. :DONE
  9.